home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / texts / dosman121 / man / join < prev    next >
Text File  |  1995-05-05  |  2KB  |  54 lines

  1.  
  2.  
  3.  
  4.             Join(V1.3, 2.x, 3.x in C:)
  5.  
  6.  
  7.  
  8.      NAME
  9.             Join - Combines (joins) many files into one larger 
  10.         file.
  11.  
  12.      SYNOPSIS
  13.             Join name1 name2.... AS or TO destname
  14.  
  15.      DESCRIPTION
  16.             This program combines several files into one larger 
  17.         file, which may also be a device such as a printer or 
  18.         modem.  It accepts wildcards as its arguments. Wildcards 
  19.         are only supported under 2.x/3.x. 1.3 MUST have more than 
  20.         one name.
  21.  
  22.             This command will alphabetize the wildcarded 
  23.         filenames before using them. If you specify only one 
  24.         name, then a simple Copy will result. Any number of files 
  25.         may be specified in the command line, and each one may be 
  26.         a wildcard specification.
  27.  
  28.      KEYWORDS
  29.           name1 name2...
  30.             These are the files you will combine. Under 1.3 you 
  31.         must place at least two names here, with a space between 
  32.         each name (up to 15). 
  33.  
  34.  
  35.           AS or TO
  36.             This is the name of the new file into which the 
  37.         contents of the other files are placed. This can be a new 
  38.         file or an old file, but it can't be any of the files 
  39.         which precede the AS or TO keyword. 
  40.  
  41.      ADDITIONAL CONSIDERATIONS
  42.             You may prefer to use TYPE for joining files rath 
  43.         than JOIN.  JOIN is included for backward's compatibility 
  44.         with batch scripts. The one advantage of Join is that it 
  45.         runs a bit faster than TYPE concatenating large files.
  46.  
  47.      EXAMPLE
  48.  
  49.             1. To combine the three files File1 File2 and File3 
  50.         into one large file named FILES1-3.  Note that the 
  51.         original files are unharmed.
  52.  
  53.             Join File1 File2 File3 AS FILES1-3
  54.